home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2007 September
/
PCWSEP07.iso
/
Software
/
Resources
/
Developers
/
XAMPP 1.5.4
/
Windows installer
/
xampp-win32-1.5.4-installer.exe
/
xampp
/
contrib
/
mysql.php
< prev
next >
Wrap
Text File
|
2006-04-09
|
613b
|
32 lines
<html>
<head>
<title>PHP und MySQL</title>
</head>
<body>
<h1>PHP und MySQL</h1>
<table border="1">
<tr>
<th>Vorname</th>
<th>Nachname</th>
<th>Telefonnummer</th>
</tr>
<?php
mysql_connect("localhost", "oswald", "geheim");
mysql_select_db("phonebook");
$query = "SELECT * FROM users";
$result = mysql_query($query);
while ($row = mysql_fetch_array ($result))
{
echo "<tr>";
echo "<td>".$row['firstname']."</td>";
echo "<td>".$row['lastname']."</td>";
echo "<td>".$row['phone']."</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>